/* ===== Home Page - Corporate Landing ===== */
:root {
    --home-primary: #9f000c;
    --home-primary-dark: #7a0009;
    --home-primary-light: #c41e2a;
    --home-gold: #c9a227;
    --home-gold-light: #e8c547;
    --home-dark: #1a1a2e;
    --home-warm-black: #2e2a26;
    --home-text: #3f4254;
    --home-text-light: #7e8299;
    --home-bg: #f8f9fc;
    --home-white: #ffffff;
    --home-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --home-shadow-hover: 0 20px 50px rgba(159, 0, 12, 0.15);
    --home-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-page {
    overflow-x: hidden;
    background: var(--home-bg);
    color: var(--home-text);
}

.home-page a {
    text-decoration: none;
    transition: var(--home-transition);
}

/* ----- Top Bar ----- */
.home-topbar {
    background: var(--home-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    padding: 8px 0;
    z-index: 1001;
}

.home-topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.home-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.home-topbar__item i {
    color: var(--home-gold);
}

/* ----- Header / Nav ----- */
.home-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--home-transition);
}

.home-header.has-topbar {
    top: 36px;
}

/* 首页头部在 Banner 区域固定白色 */
.home-page .home-header {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
}

.home-page .home-header .home-nav__link {
    color: var(--home-text);
}

.home-page .home-header .home-nav__link:hover,
.home-page .home-header .home-nav__link.is-active {
    color: var(--home-primary);
}

.home-page .home-header .home-menu-toggle span {
    background: var(--home-primary);
}

.home-header.is-scrolled {
    top: 0 !important;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
}

.home-header.is-scrolled .home-nav__link {
    color: var(--home-text);
}

.home-header.is-scrolled .home-nav__link:hover,
.home-header.is-scrolled .home-nav__link.is-active {
    color: var(--home-primary);
}

.home-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.home-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-logo img {
    height: 42px;
    transition: var(--home-transition);
}

.home-logo__text {
    font-size: 18px;
    font-weight: 700;
    color: var(--home-warm-black);
    line-height: 1.3;
    max-width: 280px;
    transition: var(--home-transition);
}

.home-header.is-scrolled .home-logo__text {
    color: var(--home-warm-black);
}

.home-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.home-nav__link {
    display: block;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    position: relative;
}

.home-nav__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--home-gold);
    transition: var(--home-transition);
    transform: translateX(-50%);
}

.home-nav__link:hover,
.home-nav__link.is-active {
    color: var(--home-gold-light);
}

.home-nav__link:hover::after,
.home-nav__link.is-active::after {
    width: 60%;
}

.home-nav__login {
    margin-left: 12px;
    padding: 8px 22px;
    background: var(--home-primary);
    color: var(--home-white) !important;
    border-radius: 6px;
    font-weight: 600;
}

.home-nav__login:hover {
    background: var(--home-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(159, 0, 12, 0.35);
}

.home-nav__login::after {
    display: none;
}

.home-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.home-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--home-white);
    margin: 6px 0;
    transition: var(--home-transition);
}

.home-header.is-scrolled .home-menu-toggle span {
    background: var(--home-primary);
}

/* ----- Hero Banner ----- */
.home-hero {
    position: relative;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
}

.home-hero__slides {
    position: absolute;
    inset: 0;
}

.home-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
}

.home-hero__slide.is-active {
    opacity: 1;
    z-index: 1;
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(0, 0, 0, 0.16) 100%);
    z-index: 2;
}

.home-hero__content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 120px;
}

.home-hero__title {
    font-size: 52px;
    font-weight: 800;
    color: var(--home-white);
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(40px);
    animation: homeFadeUp 1s ease 0.3s forwards;
}

.home-hero__subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(40px);
    animation: homeFadeUp 1s ease 0.6s forwards;
}

.home-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(40px);
    animation: homeFadeUp 1s ease 0.9s forwards;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--home-transition);
}

.home-btn--primary {
    background: var(--home-primary);
    color: var(--home-white);
}

.home-btn--primary:hover {
    background: var(--home-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(159, 0, 12, 0.4);
    color: var(--home-white);
}

.home-btn--outline {
    background: transparent;
    color: var(--home-white);
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.home-btn--outline:hover {
    background: var(--home-white);
    color: var(--home-primary);
    border-color: var(--home-white);
}

.home-btn--outline-dark {
    background: transparent;
    color: var(--home-primary);
    border: 2px solid var(--home-primary);
}

.home-btn--outline-dark:hover {
    background: var(--home-primary);
    color: var(--home-white);
    border-color: var(--home-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(159, 0, 12, 0.25);
}

.home-btn--outline-warm {
    background: transparent;
    color: var(--home-warm-black);
    border: none;
    padding-left: 0;
    padding-right: 0;
}

.home-btn--outline-warm:hover {
    background: transparent;
    color: var(--home-primary);
    transform: none;
    box-shadow: none;
}

.home-hero__dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.home-hero__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--home-transition);
    padding: 0;
}

.home-hero__dot.is-active {
    background: var(--home-gold);
    transform: scale(1.2);
}

.home-hero__arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 100%;
    pointer-events: none;
}

.home-hero__arrow {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--home-white);
    font-size: 20px;
    cursor: pointer;
    pointer-events: all;
    transition: var(--home-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero__arrow:hover {
    background: var(--home-primary);
    border-color: var(--home-primary);
}

.home-hero__arrow--prev { left: 30px; }
.home-hero__arrow--next { right: 30px; }

.home-hero__scroll {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 4;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: homeBounce 2s infinite;
}

.home-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--home-gold), transparent);
}

/* ----- Section Common ----- */
.home-section {
    padding: 90px 0;
}

.home-section--gray {
    background: var(--home-white);
}

.home-section__header {
    text-align: center;
    margin-bottom: 56px;
}

.home-section__tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(159, 0, 12, 0.08);
    color: var(--home-primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.home-section__title {
    font-size: 36px;
    font-weight: 800;
    color: var(--home-dark);
    margin-bottom: 14px;
}

.home-section__desc {
    font-size: 16px;
    color: var(--home-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.home-section__title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--home-primary), var(--home-gold));
    margin: 16px auto 0;
    border-radius: 2px;
}

/* Scroll reveal */
.home-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.home-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.home-reveal--delay-1 { transition-delay: 0.1s; }
.home-reveal--delay-2 { transition-delay: 0.2s; }
.home-reveal--delay-3 { transition-delay: 0.3s; }
.home-reveal--delay-4 { transition-delay: 0.4s; }

/* ----- Quick Links ----- */
.home-quick {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding-bottom: 0;
}

.home-quick__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.home-quick__item {
    background: var(--home-white);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--home-shadow);
    transition: var(--home-transition);
    cursor: pointer;
}

.home-quick__item:hover {
    transform: translateY(-8px);
    box-shadow: var(--home-shadow-hover);
}

.home-quick__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--home-primary), var(--home-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--home-transition);
}

.home-quick__item:hover .home-quick__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(159, 0, 12, 0.3);
}

.home-quick__icon i {
    font-size: 28px;
    color: var(--home-white);
}

.home-quick__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--home-dark);
    margin-bottom: 6px;
}

.home-quick__desc {
    font-size: 13px;
    color: var(--home-text-light);
}

/* ----- About ----- */
.home-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.home-about__image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.home-about__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.6s ease;
}

.home-about__image-wrap:hover .home-about__image {
    transform: scale(1.05);
}

.home-about__badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--home-primary);
    color: var(--home-white);
    padding: 24px 28px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--home-shadow);
}

.home-about__badge-num {
    font-size: 36px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.home-about__badge-text {
    font-size: 13px;
    margin-top: 4px;
    opacity: 0.9;
}

.home-about__content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--home-dark);
    margin-bottom: 20px;
}

.home-about__content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--home-text-light);
    margin-bottom: 16px;
}

.home-about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.home-about__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--home-text);
}

.home-about__feature i {
    color: var(--home-primary);
    font-size: 18px;
}

/* ----- Services ----- */
.home-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.home-service-card {
    background: var(--home-white);
    border-radius: 14px;
    padding: 36px 28px;
    box-shadow: var(--home-shadow);
    transition: var(--home-transition);
    position: relative;
    overflow: hidden;
}

.home-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--home-primary), var(--home-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.home-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--home-shadow-hover);
}

.home-service-card:hover::before {
    transform: scaleX(1);
}

.home-service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(159, 0, 12, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--home-transition);
}

.home-service-card:hover .home-service-card__icon {
    background: var(--home-primary);
}

.home-service-card__icon i {
    font-size: 24px;
    color: var(--home-primary);
    transition: var(--home-transition);
}

.home-service-card:hover .home-service-card__icon i {
    color: var(--home-white);
}

.home-service-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--home-dark);
    margin-bottom: 10px;
}

.home-service-card__desc {
    font-size: 14px;
    color: var(--home-text-light);
    line-height: 1.7;
}

/* ----- Statistics ----- */
.home-stats {
    background: linear-gradient(135deg, var(--home-dark) 0%, var(--home-primary-dark) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.home-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.08);
}

.home-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.home-stat {
    text-align: center;
    color: var(--home-white);
}

.home-stat__num {
    font-size: 48px;
    font-weight: 800;
    color: var(--home-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.home-stat__num .home-stat__suffix {
    font-size: 24px;
}

.home-stat__label {
    font-size: 15px;
    opacity: 0.85;
}

/* ----- News ----- */
.home-news__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.home-news__featured {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--home-shadow);
    transition: var(--home-transition);
}

.home-news__featured:hover {
    transform: translateY(-4px);
    box-shadow: var(--home-shadow-hover);
}

.home-news__featured-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-news__featured:hover .home-news__featured-img {
    transform: scale(1.05);
}

.home-news__featured-body {
    padding: 24px;
    background: var(--home-white);
}

.home-news__featured-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(159, 0, 12, 0.08);
    color: var(--home-primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 10px;
}

.home-news__featured-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--home-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.home-news__featured-date {
    font-size: 13px;
    color: var(--home-text-light);
}

.home-news__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.home-news__item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eef0f5;
    transition: var(--home-transition);
    cursor: pointer;
}

.home-news__list > .home-news__item:first-child,
.home-news__list > .home-news__item-wrap:first-child .home-news__item {
    padding-top: 0;
}

.home-news__item:hover {
    padding-left: 10px;
}

.home-news__item-date {
    flex-shrink: 0;
    width: 60px;
    text-align: center;
}

.home-news__item-day {
    font-size: 28px;
    font-weight: 800;
    color: var(--home-primary);
    line-height: 1;
}

.home-news__item-month {
    font-size: 12px;
    color: var(--home-text-light);
    margin-top: 2px;
}

.home-news__item-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--home-warm-black);
    line-height: 1.5;
    transition: var(--home-transition);
}

.home-news__item:hover .home-news__item-title {
    color: var(--home-primary);
}

.home-news__item-desc {
    font-size: 13px;
    color: var(--home-text-light);
    margin-top: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ----- Gallery ----- */
.home-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.home-gallery__item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.home-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-gallery__item:hover img {
    transform: scale(1.12);
}

.home-gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(159, 0, 12, 0.8), transparent 60%);
    opacity: 0;
    transition: var(--home-transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.home-gallery__item:hover .home-gallery__overlay {
    opacity: 1;
}

.home-gallery__overlay-text {
    color: var(--home-white);
    font-size: 15px;
    font-weight: 600;
    transform: translateY(10px);
    transition: var(--home-transition);
}

.home-gallery__item:hover .home-gallery__overlay-text {
    transform: translateY(0);
}

.home-gallery__item--wide {
    grid-column: span 2;
}

/* ----- Contact ----- */
.home-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.home-contact__info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.home-contact__info-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(159, 0, 12, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.home-contact__info-icon i {
    font-size: 20px;
    color: var(--home-primary);
}

.home-contact__info-label {
    font-size: 13px;
    color: var(--home-text-light);
    margin-bottom: 4px;
}

.home-contact__info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--home-dark);
}

.home-contact__form {
    background: var(--home-white);
    border-radius: 14px;
    padding: 36px;
    box-shadow: var(--home-shadow);
}

.home-contact__form .form-control {
    border-radius: 8px;
    border: 1px solid #e4e6ef;
    padding: 12px 16px;
    font-size: 14px;
    transition: var(--home-transition);
}

.home-contact__form .form-control:focus {
    border-color: var(--home-primary);
    box-shadow: 0 0 0 3px rgba(159, 0, 12, 0.1);
}

/* ----- Footer ----- */
.home-footer {
    background: var(--home-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.home-footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.home-footer__logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    background: var(--home-white);
    border-radius: 4px;
    overflow: hidden;
}

.home-footer__logo img {
    height: 40px;
    display: block;
}

.home-footer__logo-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--home-white);
    line-height: 1.3;
    max-width: 240px;
}

.home-footer__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--home-white);
    margin-bottom: 20px;
}

.home-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-footer__links li {
    margin-bottom: 10px;
}

.home-footer__links--cols2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

.home-footer__links--cols2 li {
    margin-bottom: 0;
}

.home-footer__links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

.home-footer__links a:hover {
    color: var(--home-gold);
    padding-left: 6px;
}

.home-official-follow__list {
    display: flex;
    gap: 16px;
}

.home-official-follow__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.home-official-follow__item img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.home-official-follow__item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.2;
    white-space: nowrap;
}

.home-footer__bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}

.home-detail-title {
    font-size: 28px;
    line-height: 1.4;
    margin: 0 0 16px;
    text-align: center;
    color: var(--home-warm-black);
}

.home-detail-meta {
    margin-bottom: 32px;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
}

.home-detail-summary {
    margin: 0 0 28px;
    padding: 18px 22px 18px 20px;
    background: #f3f5f9;
    border: 1px solid #e4e6ef;
    border-left: 4px solid var(--home-primary);
    border-radius: 6px;
}

.home-detail-summary__label {
    display: inline-block;
    margin-bottom: 8px;
    padding: 2px 8px;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    color: var(--home-primary);
    background: rgba(159, 0, 12, 0.08);
    border-radius: 3px;
}

.home-detail-summary__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.85;
    color: var(--home-text);
}

.home-detail-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid #eef0f5;
}

.home-detail-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 120px;
    height: 40px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid #d8dbe5;
    background: #fff;
    color: #5e6278;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: var(--home-transition);
}

.home-detail-action:hover {
    color: var(--home-warm-black);
    border-color: #b5b5c3;
    background: #fafbfc;
}

.home-detail-action__icon {
    font-size: 14px;
    line-height: 1;
    opacity: 0.75;
}

.home-footer__icp {
    display: inline-block;
    margin-left: 12px;
}

.home-footer__icp a {
    color: inherit;
    text-decoration: none;
    opacity: 0.85;
}

.home-footer__icp a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ----- Back to Top ----- */
.home-backtop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--home-primary);
    color: var(--home-white);
    border: none;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--home-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(159, 0, 12, 0.3);
}

.home-backtop.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.home-backtop:hover {
    background: var(--home-primary-light);
    transform: translateY(-4px);
}

/* ----- Animations ----- */
@keyframes homeFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes homeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@keyframes homePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(159, 0, 12, 0.3); }
    50% { box-shadow: 0 0 0 12px rgba(159, 0, 12, 0); }
}

/* ----- Responsive ----- */
@media (max-width: 1199px) {
    .home-hero__title { font-size: 42px; }
    .home-quick__grid { grid-template-columns: repeat(2, 1fr); }
    .home-footer__grid { grid-template-columns: 1fr 1fr; }
    .home-official-follow { grid-column: 1 / -1; }
}

@media (max-width: 991px) {
    .home-nav { display: none; }
    .home-nav.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--home-white);
        padding: 16px;
        box-shadow: var(--home-shadow);
    }
    .home-nav.is-open .home-nav__link {
        color: var(--home-text);
        padding: 12px 16px;
    }
    .home-menu-toggle { display: block; }
    .home-about__grid,
    .home-news__grid,
    .home-contact__grid { grid-template-columns: 1fr; }
    .home-services__grid { grid-template-columns: 1fr 1fr; }
    .home-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .home-gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .home-gallery__item--wide { grid-column: span 1; }
}

@media (max-width: 767px) {
    .home-hero__title { font-size: 32px; }
    .home-hero__subtitle { font-size: 16px; }
    .home-section { padding: 60px 0; }
    .home-section__title { font-size: 28px; }
    .home-quick { margin-top: -40px; }
    .home-quick__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .home-quick__item { padding: 24px 16px; }
    .home-services__grid { grid-template-columns: 1fr; }
    .home-stats__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .home-stat__num { font-size: 36px; }
    .home-about__features { grid-template-columns: 1fr; }
    .home-footer__grid { grid-template-columns: 1fr; }
    .home-hero__arrow { display: none; }
    .home-topbar { display: none; }
    .home-header.has-topbar { top: 0; }
}

.home-news__item--link {
    display: flex;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
}

.home-news__item--link:hover {
    background: rgba(0, 82, 155, 0.04);
}

.home-news__item--link .home-news__item-title {
    color: var(--home-warm-black);
}

.home-news__item-wrap {
    display: block;
    width: 100%;
}

.home-news__item-wrap .home-news__item {
    width: 100%;
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    text-align: left;
}

.home-rich-content {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

.home-rich-content p {
    margin-bottom: 12px;
}

.home-rich-content img {
    max-width: 100%;
    height: auto;
}

.home-procurement-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #eef0f5;
}

.home-procurement-pager__btn,
.home-procurement-pager__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 14px;
    color: var(--home-warm-black);
    background: #fff;
    border: 1px solid #e4e6ef;
    transition: var(--home-transition);
}

.home-procurement-pager__btn:hover,
.home-procurement-pager__num:hover {
    color: var(--home-primary);
    border-color: var(--home-primary);
}

.home-procurement-pager__num.is-active {
    color: #fff;
    background: var(--home-primary);
    border-color: var(--home-primary);
}

.home-procurement-pager__ellipsis {
    color: var(--home-text-light);
    padding: 0 4px;
}

.home-procurement-pager__info {
    width: 100%;
    text-align: center;
    margin-top: 8px;
    font-size: 13px;
    color: var(--home-text-light);
}
